home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 001 / xyproto.arc / XYPROTO.REF
Text File  |  1985-07-28  |  46KB  |  1,253 lines

  1. By popular request, I am posting this document describing the XMODEM
  2. protocol, plus the XMODEM/CRC and YMODEM (Batch transmission, etc.)
  3. protocol extensions.
  4.  
  5. Ward Christensen's article on this subject will appear late this year
  6. in Byte Magazine.
  7. .paè
  8.  
  9.  
  10.  
  11.  
  12.  
  13.  
  14.                      XMODEM/YMODEM PROTOCOL REFERENCE
  15.                  A compendium of documents describing the
  16.                             XMODEM and YMODEM
  17.                          File Transfer Protocols
  18.  
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.                          Edited by Chuck Forsberg
  32.  
  33.                  Please distribute as widely as possible.
  34.  
  35.                        Questions to Chuck Forsberg
  36.  
  37.  
  38.  
  39.  
  40.  
  41.                            Omen Technology Inc
  42.                         17505-V Sauvie Island Road
  43.                           Portland Oregon 97231
  44.                            Voice: 503-621-3406
  45.             Modem (Telegodzilla): 503-621-3746 Speed 1200,300
  46.                           Compuserve: 70715,131
  47.                     UUCP: ...!tektronix!reed!omen!caf
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61. è
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.                                  CONTENTS
  69.  
  70.  
  71. 1.  ROSETTA STONE.....................................................   2
  72.  
  73. 2.  TOWER OF BABEL ??.................................................   3
  74.     2.1  Some Messages from the Pioneer...............................   3
  75.  
  76. 3.  XMODEM PROTOCOL ENHANCEMENTS......................................   6
  77.     3.1  CAN-CAN Abort................................................   6
  78.     3.2  CRC-16 Option................................................   6
  79.     3.3  1024 Byte Packet Option......................................   7
  80.  
  81. 4.  YMODEM Batch File Transmission....................................   8
  82.  
  83. 6.  XMODEM PROTOCOL OVERVIEW..........................................  13
  84.     6.1  Definitions..................................................  13
  85.     6.2  Transmission Medium Level Protocol...........................  13
  86.     6.3  File Level Protocol..........................................  14
  87.     6.4  Programming Tips.............................................  15
  88.  
  89. 7.  XMODEM/CRC Overview...............................................  17
  90.     7.1  CRC Calculation..............................................  17
  91.     7.2  CRC File Level Protocol Changes..............................  18
  92.     7.3  Data Flow Examples with CRC Option...........................  19
  93.  
  94. 8.  MORE INFORMATION..................................................  21
  95.  
  96. 9.  YMODEM Programs...................................................  22
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.                                   - i -è
  116.  
  117.  
  118.  
  119.  
  120.  
  121.                              LIST OF FIGURES
  122.  
  123.  
  124.  Figure 1.  1024 byte Packets.........................................   7
  125.  
  126.  Figure 2.  Mixed 1024 and 128 byte Packets...........................   7
  127.  
  128.  Figure 3.  Batch Transmission Session................................  11
  129.  
  130.  Figure 4.  Filename packet transmitted by sb.........................  11
  131.  
  132.  Figure 5.  Header Information used by YMODEM Implementations.........  11
  133.  
  134.  Figure 6.  XMODEM Message Block Level Protocol.......................  14
  135.  
  136.  Figure 7.  Data flow including Error Recovery........................  15
  137.  
  138.  Figure 8.  Message Block Level Protocol, CRC mode....................  17
  139.  
  140.  Figure 9.  Example of CRC Calculation written in C...................  18
  141.  
  142. Figure 10.  Data Flow: Receiver has CRC Option, Sender Doesn't........  19
  143.  
  144. Figure 11.  Receiver and Sender Both have CRC Option..................  20
  145.  
  146.  
  147.  
  148.  
  149.  
  150.  
  151.  
  152.  
  153.  
  154.  
  155.  
  156.  
  157.  
  158.  
  159.  
  160.  
  161.  
  162.  
  163.  
  164.  
  165.  
  166.  
  167.  
  168.                                   - ii -
  169. èX/YMODEM Protocol Reference      5-30-85                                 2
  170.  
  171.  
  172. 1.  ROSETTA STONE
  173.  
  174. Here are some definitions which reflect the current vernacular in the
  175. computer media.  The attempt here is identify the file transfer protocol
  176. rather than specific programs.
  177.  
  178. XMODEM  refers to the original 1979 file transfer etiquette introduced by
  179.         Ward Christensen's 1979 MODEM2 program.  It's also called the
  180.         MODEM or MODEM2 protocol.  Some who are unaware of MODEM7's batch
  181.         file mode call it MODEM7.  Other aliases include "CP/M Users's
  182.         Group" and "TERM II FTP 3".  This protocol is supported by every
  183.         serious communications program because of its universality,
  184.         simplicity, and reasonable performance.
  185.  
  186. XMODEM/CRC replaces XMODEM's 1 byte checksum with CRC-16, giving modern
  187.         error detection protection.
  188.  
  189. YMODEM  refers to the XMODEM/CRC protocol with the throughput and batch
  190.         transmission enhancements described below.
  191.  
  192.  
  193.  
  194.  
  195.  
  196.  
  197.  
  198.  
  199.  
  200.  
  201.  
  202.  
  203.  
  204.  
  205.  
  206.  
  207.  
  208.  
  209.  
  210.  
  211.  
  212.  
  213.  
  214.  
  215.  
  216.  
  217.  
  218.  
  219.  
  220.  
  221.  
  222.  
  223.                                   - 2 -èX/YMODEM Protocol Reference      5-30-85                                 3
  224.  
  225.  
  226. 2.  TOWER OF BABEL ??
  227.  
  228. In the interest of fostering compatibility among communications         programs,
  229. part of of the Professional-YAM manual is reproduced here to minimize the
  230. Electronic Tower of Babel.
  231.  
  232. The YMODEM Protocol is supported by the public domain programs YAM (CP/M),
  233. YAM(CP/M-86), YAM(CCPM-86),  MODEM76.ASM (CP/M), rb/sb (Unix, VMS,
  234. Berkeley Unix, Venix, Xenix, Coherent, IDRIS, Regulus) as well as
  235. Professional-YAM.  These programs have been in use since 1981.
  236.  
  237. The protocols described below are enhancements to Ward Christensen's
  238. XMODEM protocol, and are public domain.
  239.  
  240. The 1k packet length capability described below may be used in conjunction
  241. with the Batch Protocol, or with single file transfers identical to the
  242. XMODEM/CRC protocol except for the minimal changes to support 1k packets.
  243.  
  244. To complete this tome, Ward Christensen's original protocol document and
  245. John Byrns's CRC-16 document are included for reference.
  246.  
  247. References to the MODEM or MODEM7 protocol have been changed to XMODEM to
  248. accommodate the vernacular.
  249.  
  250. Watch for an article describing the YMODEM protocol in a more coherent
  251. fashion later this year.  This article will include some interesting
  252. history on the development of microcomputer file transfers.
  253.  
  254.  
  255. 2.1  Some Messages from the Pioneer
  256.  
  257. #: 130940 S0/Communications 25-Apr-85  18:38:47
  258. Sb: my protocol
  259. Fm: Ward Christensen 76703,302 (EDITED)
  260. To: all
  261.  
  262.  
  263. Be aware the article1 DID quote me correctly in terms of the phrases like
  264. "not robust", etc.
  265.  
  266. It was a quick hack I threw together, very unplanned (like everything I
  267. do), to satisfy a personal need to communicate with "some other" people.
  268.  
  269. ONLY the fact that it was done in 8/77, and that I put it in the public
  270. domain immediately, made it become the standard that it is.
  271.  
  272.  
  273. __________
  274.  
  275.  1. Infoworld April 29 p. 16
  276.  
  277.                                    - 3 -èX/YMODEM Protocol Reference      5-30-85                                 4
  278.  
  279.  
  280. I think its time for me to
  281.  
  282. (1) document it; (people call me and say "my product is going to include
  283. it - what can I 'reference'", or "I'm writing a paper on it, what do I put
  284. in the bibliography") and
  285.  
  286. (2) propose an "incremental extension" to it, which might take "exactly"
  287. the form of Chuck Forsberg's YAM protocol.  He wrote YAM in C for CP/M and
  288. put it in the public domain, and wrote a batch protocol for Unix called rb
  289. and sb (receive batch, send batch), which was basically XMODEM with
  290.    (a) a record 0 containing filename date time and size
  291.    (b) a 1K block size option
  292.    (c) CRC-16.
  293.  
  294. He did some clever programming to detect false ACK or EOT, but basically
  295. left them the same.
  296.  
  297. People who suggest I make SIGNIFICANT changes to the protocol, such as
  298. "full duplex", "multiple outstanding blocks", "multiple destinations", etc
  299. etc don't understand that the incredible simplicity of the protocol is one
  300. of the reasons it survived to this day in as many machines and programs as
  301. it may be found in!
  302.  
  303. Consider the PC-NET group back in '77 or so - documenting to beat the band
  304. - THEY had a protocol, but it was "extremely complex", because it tried to
  305. be "all things to all people" - i.e. send binary files on a 7-bit system,
  306. etc.  I was not that "benevolent". I (emphasize > I < ) had an 8-bit UART,
  307. so "my protocol was an 8-bit protocol", and I would just say "sorry" to
  308. people who were held back by 7-bit limitations.
  309. ...
  310. Block size: Chuck Forsberg created an extension of my protocol, called
  311. YAM, which is also supported via his public domain programs for UNIX
  312. called rb and sb - receive batch and send batch.  They cleverly send a
  313. "block 0" which contains the filename, date, time, and size.
  314. Unfortunately, its UNIX style, and is a bit weird2 - octal numbers, etc.
  315. BUT, it is a nice way to overcome the kludgy "echo the chars of the name"
  316. introduced with MODEM7.  Further, chuck uses CRC-16 and optional 1K
  317. blocks.  Thus the record 0, 1K, and CRC, make it a "pretty slick new
  318. protocol" which is not significantly different from my own.
  319.  
  320. Also, there is a catchy name - YMODEM.  That means to some that it is the
  321. "next thing after XMODEM", and to others that it is the Y(am)MODEM
  322. protocol.  I don't want to emphasize that too much - out of fear that
  323. other mfgrs might think it is a "competitive" protocol, rather than an
  324.  
  325.  
  326. __________
  327.  
  328.  2. The Unix style stuff (time, file mode) is optional.  The pathname and
  329.     file length may be sent alone if desired.
  330.  
  331.                                   - 4 -
  332. .paèX/YMODEM Protocol Reference      5-30-85                                 5
  333.  
  334.  
  335. "unaffiliated" protocol.  Chuck is currently selling a much-enhanced
  336. version of his CP/M-80 C program YAM, calling it Professional Yam, and its
  337. for the PC - I'm using it right now.  VERY slick!  32K capture buffer,
  338. script, scrolling, previously captured text search, plus built-in commands
  339. for just about everything - directory (sorted every which way), XMODEM,
  340. YMODEM, KERMIT, and ASCII file upload/download, etc.  You can program it
  341. to "behave" with most any system - for example when trying a number for
  342. CIS it detects the "busy" string back from the modem and substitutes a
  343. diff phone # into the dialing string and branches back to try it.
  344.  
  345.  
  346.  
  347.  
  348.  
  349.  
  350.                                   - 5 -
  351. .paèX/YMODEM Protocol Reference      5-30-85                                 6
  352.  
  353.  
  354. 3.  XMODEM PROTOCOL ENHANCEMENTS
  355.  
  356. Professional-YAM uses several compatible extensions and logic enhancements
  357. to the widely used Ward Christensen XMODEM protocol.
  358.  
  359. This chapter discusses the protocol extensions to Ward Christensen's 1982
  360. XMODEM protocol description document.
  361.  
  362. YAM does not ask the operator whether he wishes to keep retrying after 10
  363. attempts have failed to correctly transfer a packet.  Virtually all
  364. correctable errors are corrected within the first few retransmissions.  If
  365. the line is so bad that ten attempts are insufficient, there is a
  366. significant danger of undetected errors.  In that case, it's better to
  367. redial for a better connection.
  368.  
  369.  
  370. 3.1  CAN-CAN Abort
  371.  
  372. YAM recognizes a sequence of two consecutive CAN (Hex 18) characters
  373. without modem errors (overrun, framing, etc.) as a transfer abort
  374. command.1 The check for two consecutive CAN characters virtually
  375. eliminates the possibility of a line hit aborting the transfer.  YAM sends
  376. five CAN characters when it aborts a XMODEM protocol file transfer,
  377. followed by five backspaces to delete the CAN characters from the remote's
  378. keyboard input buffer (in case the remote had already aborted the
  379. transfer).
  380.  
  381.  
  382. 3.2  CRC-16 Option
  383.  
  384. The XMODEM protocol uses an optional two character CRC-16 instead of the
  385. one character arithmetic checksum used by the original protocol and by
  386. most commercial implementations.  CRC-16 guarantees detection of all
  387. single and double bit errors,  all errors with an odd number of error
  388. bits, all burst errors of length 16 or less, 99.9969% of all 17-bit error
  389. bursts, and 99.9984 per cent of all possible longer error bursts.  By
  390. contrast, a double bit error, or a burst error of 9 bits or more can sneak
  391. past the XMODEM protocol arithmetic checksum.
  392.  
  393. The XMODEM/CRC protocol is similar to the XMODEM protocol, except that the
  394. receiver specifies CRC-16 by sending C (Hex 43) instead of NAK when
  395. requesting the FIRST packet.  A two byte CRC is sent in place of the one
  396. byte arithmetic checksum.  YAM's c option to the _r command enables CRC-16
  397. in single file reception, corresponding to the original implementation in
  398.  
  399.  
  400. __________
  401.  
  402.  1. This is recognized when YAM is waiting for the beginning of a packet
  403.     or for an acknowledge to one that has been sent.
  404.  
  405.                                   - 6 -èX/YMODEM Protocol Reference      5-30-85                                 7
  406.  
  407.  
  408. the MODEM7 series programs.  Many commercial communications programs and
  409. bulletin board systems still do not support CRC-16, especially those
  410. written in Basic or Pascal.
  411.  
  412. XMODEM protocol with CRC is accurate provided both sender and receiver
  413. both report a successful transmission.  The protocol is robust in the
  414. presence of characters lost by buffer overloading on timesharing systems.
  415.  
  416. Professional-YAM adds several proprietary logic enhancements to XMODEM's
  417. error detection and recovery.  These compatible enhancements eliminate
  418. most of the bad file transfers other programs make when using the XMODEM
  419. protocol under less than ideal conditions.
  420.  
  421.  
  422. 3.3  1024 Byte Packet Option
  423.  
  424. If YAM is sending with the k option, the transmitted packet contains 1024
  425. bytes of data.  An STX (02) replaces the SOH (01) at the beginning of the
  426. transmitted block to notify the receiver of the longer packet length.  The
  427. receiver should be able to accept any mixture of 128 and 1024 byte
  428. packets.  The packet number is incremented by one for each packet.2 
  429.  
  430. If 1024 byte packets are being used, it is possible for a 128 byte file to
  431. "grow" to 1024 bytes on CP/M.  This does not waste disk space on CP/M
  432. because the allocation granularity is 1k.  When 1024 byte packets are used
  433. with batch transmission, the file length transmitted in the file name
  434. packet allows the receiver to discard the padding.
  435.  
  436. CRC-16 should be used with the k option to preserve data integrity over
  437. phone lines.  The k option may be used with batch file transmission, or
  438. with single file transmission.
  439.  
  440.  
  441.  
  442.  
  443.  
  444.  
  445.  
  446.  
  447.  
  448.  
  449.  
  450.  
  451.  
  452.  
  453. __________
  454.  
  455.  2. The displayed sector number should be the number of bytes divided by
  456.     128.  This maintains a familiar unit of measurement for the progress
  457.     report and avoids ambiguity caused by rollover of the sector number.
  458.  
  459.                                   - 7 -èX/YMODEM Protocol Reference      5-30-85                                 8
  460.  
  461.  
  462.           Figure 1.  1024 byte Packets
  463.  
  464.           SENDER                                  RECEIVER
  465.                                                   "s -k foo.bar"
  466.           "foo.bar open x.x minutes"
  467.                                                   C
  468.           STX 01 FE Data[1024] CRC CRC
  469.                                                   ACK
  470.           STX 02 FD Data[1024] CRC CRC
  471.                                                   ACK
  472.           STX 03 FC Data[1000] CPMEOF[24] CRC CRC
  473.                                                   ACK
  474.           EOT
  475.                                                   ACK
  476.  
  477.           Figure 2.  Mixed 1024 and 128 byte Packets
  478.  
  479.           SENDER                                  RECEIVER
  480.                                                   "s -k foo.bar"
  481.           "foo.bar open x.x minutes"
  482.                                                   C
  483.           STX 01 FE Data[1024] CRC CRC
  484.                                                   ACK
  485.           STX 02 FD Data[1024] CRC CRC
  486.                                                   ACK
  487.           SOH 03 FC Data[128] CRC CRC
  488.                                                   ACK
  489.           SOH 04 FB Data[100] CPMEOF[28] CRC CRC
  490.                                                   ACK
  491.           EOT
  492.                                                   ACK
  493.  
  494. 4.  YMODEM Batch File Transmission
  495.  
  496. The YMODEM Batch protocol is an extension to the XMODEM/CRC protocol that
  497. allows 0 or more files to be transmitted with a single command.  (Zero
  498. files may be sent if none of the requested files is accessible.) The
  499. design approach of the YAM Batch protocol is to use the normal routines
  500. for sending and receiving XMODEM packets in a layered fashion similar to
  501. packet switching methods.
  502.  
  503. Why was it necessary to design a new batch protocol when one already
  504. existed in MODEM7?1 The batch file mode used by MODEM7 is unsuitable
  505.  
  506.  
  507. __________
  508.  
  509.  1. The MODEM7 batch protocol transmitted CP/M FCB bytes f1...f8 and
  510.     t1...t3 one character at a time.  The receiver echoed these bytes as
  511.     received, one at a time.
  512.  
  513.                                   - 8 -èX/YMODEM Protocol Reference      5-30-85                                 9
  514.  
  515.  
  516. because it does not permit full pathnames, file length, file date, or
  517. other attribute information to be transmitted.  Such a restrictive design,
  518. hastily implemented with only CP/M in mind, would not have permitted
  519. extensions to current areas of personal computing such as Unix, DOS, and
  520. object oriented systems.
  521.  
  522. As in the case of single a file transfer, the receiver initiates batch
  523. file transmission by sending a "C" character (for CRC-16).
  524.  
  525. The sender opens the first file and sends packet number 0 with the
  526. following information.2
  527.  
  528. Only the pathname (file name) part is required for batch transfers.
  529.  
  530. To maintain upwards compatibility, all unused bytes in packet 0 must be
  531. set to null.
  532.  
  533. Pathname The pathname (conventionally, the file name) is sent as a null
  534.      terminated ASCII string.  This is the filename format used by the
  535.      handle oriented MSDOS(TM) functions and C library fopen functions.
  536.      An assembly language example follows:
  537.                               DB      'foo.bar',0
  538.      No spaces are included in the pathname.  Normally only the file name
  539.      stem (no directory prefix) is transmitted unless the sender has
  540.      selected YAM's f option to send the full pathname.  The source drive
  541.      (A:, B:, etc.) is not sent.
  542.  
  543.      Filename Considerations:
  544.  
  545.         o+ File names should be translated to lower case unless the sending
  546.           system supports upper/lower case file names.  This is a
  547.           convenience for users of systems (such as Unix) which store
  548.           filenames in upper and lower case.
  549.  
  550.         o+ The receiver should accommodate file names in lower and upper
  551.           case.
  552.  
  553.         o+ The rb(1) program on Unix systems normally translates the
  554.           filename to lower case unless one or more letters in the
  555.           filename are already in lower case.
  556.  
  557.         o+ When transmitting files between different operating systems,
  558.           file names must be acceptable to both the sender and receiving
  559.           operating systems.
  560.      If directories are included, they are delimited by /; i.e.,
  561.  
  562.  
  563. __________
  564.  
  565.  2. Only the data part of the packet is described here.
  566.  
  567.                                   - 9 -èX/YMODEM Protocol Reference      5-30-85                                10
  568.  
  569.  
  570.      "subdir/foo" is acceptable, "subdir\foo" is not.
  571.  
  572. Length The file length and each of the succeeding fields are optional.3
  573.      The length field is stored in the packet as a decimal string.  The
  574.      file length does not include any CPMEOF (^Z) characters the
  575.      communications program might use to pad the last packet.
  576.  
  577.      If the file being transmitted is growing during transmission, the
  578.      length field should be set to at least the final expected file
  579.      length, or not sent.
  580.  
  581.      The receiver stores the specified number of characters, discarding
  582.      any padding added by the sender to fill up the last packet.
  583.  
  584. Mod Date A single space separates the modification date from the file
  585.      length.
  586.  
  587.      The mod date is optional, and the filename and length may be sent
  588.      without requiring the mod date to be sent.
  589.  
  590.      The mod date is sent as an octal number giving the time the contents
  591.      of the file were last changed measured in seconds from Jan 1 1970
  592.      Universal Coordinated Time (GMT).  A date of 0 implies the
  593.      modification date is unknown and should be left as the date the file
  594.      is received.
  595.  
  596.      This standard format was chosen to eliminate ambiguities arising from
  597.      transfers between different time zones.
  598.  
  599.      Two Microsoft blunders complicate the use of modification dates in
  600.      file transfers with MSDOS(TM) systems.  The first is the lack of
  601.      timezone standardization in MS-DOS.  A file's creation time can not
  602.      be known unless the timezone of the system that happened to write the
  603.      file4 is known.  Unix solved this problem (for planet Earth, anyway)
  604.      by stamping files with Universal Time (GMT).  Microsoft would have to
  605.      include the timezone of origin in the directory entries, but does
  606.      not.  YAM gets around this problem by using the z parameter which is
  607.      originate from a different timezone, the -zT option may be used use T
  608.      as the timezone for an individual file transfer.
  609.  
  610.      The second problem is the lack of a separate file creation date in
  611.      DOS.  Since some backup schemes used with DOS rely on the file
  612.  
  613.  
  614. __________
  615.  
  616.  3. Fields may not be skipped.
  617.  
  618.  4. Not necessarily that of the transmitting system!
  619.  
  620.  
  621.                                   - 10 -èX/YMODEM Protocol Reference      5-30-85                                11
  622.  
  623.  
  624.      creation date to select files to be copied to the archive, back-
  625.      dating the file modification date could interfere with the safety of
  626.      the transferred files.  For this reason, Professional-YAM does not
  627.      modify the date of received files with the header information unless
  628.      the d parameter is non zero.
  629.  
  630.  
  631. Mode A single space separates the file mode from the modification date.
  632.      The file mode is stored as an octal string.  Unless the file
  633.      originated from a Unix system, the file mode is set to 0.  rb(1)
  634.      checks the file mode for the 0x8000 bit which indicates a Unix type
  635.      regular file.  Files with the 0x8000 bit set are assumed to have been
  636.      sent from another Unix (or similar) system which uses the same file
  637.      conventions.  Such files are not translated in any way.
  638.  
  639.  
  640. Serial Number A single space separates the serial number from the file
  641.      mode.  The serial number of the transmitting program is stored as an
  642.      octal string.  Programs which do not have a serial number should omit
  643.      this field, or set it to 0.  The receiver's use of this field is
  644.      optional.
  645.  
  646. The rest of the packet is set to nulls.  This is essential to preserve
  647. upward compatibility.5 After the filename packet has been received, it is
  648. ACK'ed if the write open is successful.  The receiver then initiates
  649. transfer of the file contents according to the standard XMODEM/CRC
  650. protocol.  If the file cannot be opened for writing, the receiver cancels
  651. the transfer with CAN characters as described above.
  652.  
  653. After the file contents have been transmitted, the receiver again asks for
  654. the next pathname.  Transmission of a null pathname terminates batch file
  655. transmission.  Note that transmission of no files is not necessarily an
  656. error.  This is possible if none of the files requested of the sender
  657. could be opened for reading.
  658.  
  659. In batch transmission, the receiver automatically requests CRC-16.
  660.  
  661. The Unix programs sb(1) and rb(1) included in the source code file
  662. RBSB.QQQ (rbsb.sh) should answer questions about YAM's batch protocol.
  663.  
  664.  
  665.  
  666.  
  667.  
  668.  
  669. __________
  670.  
  671.  5. If, perchance, this information extends beyond 128 bytes (possible
  672.     with Unix 4.2 BSD extended file names), the packet should be sent as a
  673.     1k packet as described above.
  674.  
  675.                                   - 11 -èX/YMODEM Protocol Reference      5-30-85                                12
  676.  
  677.  
  678.             Figure 3.  Batch Transmission Session
  679.  
  680.             SENDER                                  RECEIVER
  681.                                                     "sb foo.*"
  682.             "sending in batch mode etc."
  683.                                                     C
  684.             SOH 00 FF foo.c NUL[123] CRC CRC
  685.                                                     ACK
  686.                                                     C
  687.             SOH 01 FE Data[128] CRC CRC
  688.                                                     ACK
  689.             SOH 02 FD Data[1024] CRC CRC
  690.                                                     ACK
  691.             SOH 03 FC Data[128] CRC CRC
  692.                                                     ACK
  693.             SOH 04 FB Data[100] CPMEOF[28] CRC CRC
  694.                                                     ACK
  695.             EOT
  696.                                                     ACK
  697.                                                     C
  698.             SOH 00 FF NUL[128] CRC CRC
  699.                                                     ACK
  700.  
  701.        Figure 4.  Filename packet transmitted by sb
  702.  
  703.                     -rw-r--r--  6347 Jun 17 1984 20:34 bbcsched.txt
  704.  
  705.        00 0100FF62 62637363 6865642E 74787400   |...bbcsched.txt.|
  706.        10 36333437 20333331 34373432 35313320   |6347 3314742513 |
  707.        20 31303036 34340000 00000000 00000000   |100644..........|
  708.        30 00000000 00000000 00000000 00000000
  709.        80 000000CA 56
  710.  
  711.     Figure 5.  Header Information used by YMODEM Implementations
  712.     
  713.     
  714.     Program         Name    Length  Date    Mode    S/N     1k Blocks
  715.     
  716.     Unix rb/sb      yes     yes     yes     yes     no      yes
  717.     VMS rb/sb       yes     yes     no      no      no      yes
  718.     Pro-YAM         yes     yes     yes     no      yes     yes
  719.     cp/M YAM        yes     no      no      no      no      yes
  720.     MODEM76         yes     no      no      no      no      no
  721.  
  722.  
  723.  
  724.  
  725.  
  726.  
  727.  
  728.  
  729.                                   - 12 -èX/YMODEM Protocol Reference      5-30-85                                13
  730.  
  731.  
  732. 6.  XMODEM PROTOCOL OVERVIEW
  733.  
  734. 8/9/82 by Ward Christensen.
  735.  
  736. I will maintain a master copy of this.  Please pass on changes or
  737. suggestions via CBBS/Chicago at (312) 545-8086, CBBS/CPMUG (312) 849-1132
  738. or by voice at (312) 849-6279.
  739.  
  740. 6.1  Definitions
  741.  
  742.   <soh> 01H
  743.   <eot> 04H
  744.   <ack> 06H
  745.   <nak> 15H
  746.   <can> 18H
  747.   <C>   43H
  748.  
  749.  
  750. 6.2  Transmission Medium Level Protocol
  751.  
  752. Asynchronous, 8 data bits, no parity, one stop bit.
  753.  
  754. The protocol imposes no restrictions on the contents of the data being
  755. transmitted.  No control characters are looked for in the 128-byte data
  756. messages.  Absolutely any kind of data may be sent - binary, ASCII, etc.
  757. The protocol has not formally been adopted to a 7-bit environment for the
  758. transmission of ASCII-only (or unpacked-hex) data , although it could be
  759. simply by having both ends agree to AND the protocol-dependent data with
  760. 7F hex before validating it.  I specifically am referring to the checksum,
  761. and the block numbers and their ones- complement.
  762.  
  763. Those wishing to maintain compatibility of the CP/M file structure, i.e.
  764. to allow modemming ASCII files to or from CP/M systems should follow this
  765. data format:
  766.  
  767.    o+ ASCII tabs used (09H); tabs set every 8.
  768.  
  769.    o+ Lines terminated by CR/LF (0DH 0AH)
  770.  
  771.    o+ End-of-file indicated by ^Z, 1AH.  (one or more)
  772.  
  773.    o+ Data is variable length, i.e. should be considered a continuous
  774.      stream of data bytes, broken into 128-byte chunks purely for the
  775.      purpose of transmission.
  776.  
  777.    o+ A CP/M "peculiarity": If the data ends exactly on a 128-byte
  778.      boundary, i.e. CR in 127, and LF in 128, a subsequent sector
  779.      containing the ^Z EOF character(s) is optional, but is preferred.
  780.      Some utilities or user programs still do not handle EOF without ^Zs.
  781.  
  782.  
  783.                                   - 13 -èX/YMODEM Protocol Reference      5-30-85                                14
  784.  
  785.  
  786.    o+ The last block sent is no different from others, i.e.  there is no
  787.      "short block".
  788.  
  789.               Figure 6.  XMODEM Message Block Level Protocol
  790.  
  791.       Each block of the transfer looks like:
  792.      <SOH><blk #><255-blk #><--128 data bytes--><cksum>
  793.          in which:
  794.      <SOH>       = 01 hex
  795.      <blk #>     = binary number, starts at 01 increments by 1, and
  796.                    wraps 0FFH to 00H (not to 01)
  797.      <255-blk #> = blk # after going thru 8080 "CMA" instr, i.e.
  798.                    each bit complemented in the 8-bit block number.
  799.                    Formally, this is the "ones complement".
  800.      <cksum>     = the sum of the data bytes only.  Toss any carry.
  801.  
  802. 6.3  File Level Protocol
  803.  
  804. 6.3.1
  805. All errors are retried 10 times.  For versions running with an operator
  806. (i.e. NOT with XMODEM), a message is typed after 10 errors asking the
  807. operator whether to "retry or quit".
  808.  
  809. Some versions of the protocol use <can>, ASCII ^X, to cancel transmission.
  810. This was never adopted as a standard, as having a single "abort" character
  811. makes the transmission susceptible to false termination due to an <ack>
  812. <nak> or <soh> being corrupted into a <can> and cancelling transmission.
  813.  
  814. The protocol may be considered "receiver driven", that is, the sender need
  815. not automatically re-transmit, although it does in the current
  816. implementations.
  817.  
  818.  
  819. 6.3.2
  820. The receiver has a 10-second timeout.  It sends a <nak> every time it
  821. times out.  The receiver's first timeout, which sends a <nak>, signals the
  822. transmitter to start.  Optionally, the receiver could send a <nak>
  823. immediately, in case the sender was ready.  This would save the initial 10
  824. second timeout.  However, the receiver MUST continue to timeout every 10
  825. seconds in case the sender wasn't ready.
  826.  
  827. Once into a receiving a block, the receiver goes into a one-second timeout
  828. for each character and the checksum.  If the receiver wishes to <nak> a
  829. block for any reason (invalid header, timeout receiving data), it must
  830. wait for the line to clear.  See "programming tips" for ideas
  831.  
  832. Synchronizing:  If a valid block number is received, it will be: 1) the
  833. expected one, in which case everything is fine; or 2) a repeat of the
  834. previously received block.  This should be considered OK, and only
  835. indicates that the receivers <ack> got glitched, and the sender re-
  836. transmitted; 3) any other block number indicates a fatal loss of
  837.                                   - 14 -èX/YMODEM Protocol Reference      5-30-85                                15
  838.  
  839.  
  840. synchronization, such as the rare case of the sender getting a line-glitch
  841. that looked like an <ack>.  Abort the transmission, sending a <can>
  842.  
  843.  
  844. 6.3.3
  845. While waiting for transmission to begin, the sender has only a single very
  846. long timeout, say one minute.  In the current protocol, the sender has a
  847. 10 second timeout before retrying.  I suggest NOT doing this, and letting
  848. the protocol be completely receiver-driven.  This will be compatible with
  849. existing programs.
  850.  
  851. When the sender has no more data, it sends an <eot>, and awaits an <ack>,
  852. resending the <eot> if it doesn't get one.  Again, the protocol could be
  853. receiver-driven, with the sender only having the high-level 1-minute
  854. timeout to abort.
  855.  
  856.  
  857. Here is a sample of the data flow, sending a 3-block message.  It includes
  858. the two most common line hits - a garbaged block, and an <ack> reply
  859. getting garbaged.  <xx> represents the checksum byte.
  860.  
  861.  
  862.        Figure 7.  Data flow including Error Recovery
  863.  
  864.        SENDER                                  RECEIVER
  865.                                        times out after 10 seconds,
  866.                                <---            <nak>
  867.        <soh> 01 FE -data- <xx> --->
  868.                                <---            <ack>
  869.        <soh> 02 FD -data- xx   --->    (data gets line hit)
  870.                                <---            <nak>
  871.        <soh> 02 FD -data- xx   --->
  872.                                <---            <ack>
  873.        <soh> 03 FC -data- xx   --->
  874.           (ack gets garbaged)  <---            <ack>
  875.        <soh> 03 FC -data- xx   --->            <ack>
  876.        <eot>                   --->
  877.                                <---            <ack>
  878.  
  879. 6.4  Programming Tips
  880.  
  881.    o+ The character-receive subroutine should be called with a parameter
  882.      specifying the number of seconds to wait.  The receiver should first
  883.      call it with a time of 10, then <nak> and try again, 10 times.
  884.  
  885.      After receiving the <soh>, the receiver should call the character
  886.      receive subroutine with a 1-second timeout, for the remainder of the
  887.      message and the <cksum>.  Since they are sent as a continuous stream,
  888.      timing out of this implies a serious like glitch that caused, say,
  889.      127 characters to be seen instead of 128.
  890.  
  891.                                   - 15 -èX/YMODEM Protocol Reference      5-30-85                                16
  892.  
  893.  
  894.    o+ When the receiver wishes to <nak>, it should call a "PURGE"
  895.      subroutine, to wait for the line to clear.  Recall the sender tosses
  896.      any characters in its UART buffer immediately upon completing sending
  897.      a block, to ensure no glitches were mis- interpreted.
  898.  
  899.      The most common technique is for "PURGE" to call the character
  900.      receive subroutine, specifying a 1-second timeout,1 and looping back
  901.      to PURGE until a timeout occurs.  The <nak> is then sent, ensuring
  902.      the other end will see it.
  903.  
  904.    o+ You may wish to add code recommended by John Mahr to your character
  905.      receive routine - to set an error flag if the UART shows framing
  906.      error, or overrun.  This will help catch a few more glitches - the
  907.      most common of which is a hit in the high bits of the byte in two
  908.      consecutive bytes.  The <cksum> comes out OK since counting in 1-byte
  909.      produces the same result of adding 80H + 80H as with adding 00H +
  910.      00H.
  911.  
  912.  
  913.  
  914.  
  915.  
  916.  
  917.  
  918.  
  919.  
  920.  
  921.  
  922.  
  923.  
  924.  
  925.  
  926.  
  927.  
  928.  
  929.  
  930.  
  931.  
  932.  
  933.  
  934.  
  935.  
  936.  
  937.  
  938.  
  939.  
  940.  
  941. __________
  942.  
  943.  1. These times should be adjusted for use with timesharing systems.
  944.  
  945.                                   - 16 -èX/YMODEM Protocol Reference      5-30-85                                17
  946.  
  947.  
  948. 7.  XMODEM/CRC Overview
  949.  
  950. 1/13/85 by John Byrns -- CRC option.
  951.  
  952. Please pass on any reports of errors in this document or suggestions for
  953. improvement to me via Ward's/CBBS at (312) 849-1132, or by voice at (312)
  954. 885-1105.
  955.  
  956. The CRC used in the Modem Protocol is an alternate form of block check
  957. which provides more robust error detection than the original checksum.
  958. Andrew S. Tanenbaum says in his book, Computer Networks, that the CRC-
  959. CCITT used by the Modem Protocol will detect all single and double bit
  960. errors, all errors with an odd number of bits, all burst errors of length
  961. 16 or less, 99.997% of 17-bit error bursts, and 99.998% of 18-bit and
  962. longer bursts.
  963.  
  964. The changes to the Modem Protocol to replace the checksum with the CRC are
  965. straight forward. If that were all that we did we would not be able to
  966. communicate between a program using the old checksum protocol and one
  967. using the new CRC protocol. An initial handshake was added to solve this
  968. problem. The handshake allows a receiving program with CRC capability to
  969. determine whether the sending program supports the CRC option, and to
  970. switch it to CRC mode if it does. This handshake is designed so that it
  971. will work properly with programs which implement only the original
  972. protocol. A description of this handshake is presented in section 10.
  973.  
  974.   Figure 8.  Message Block Level Protocol, CRC mode
  975.  
  976.   Each block of the transfer in CRC mode looks like:
  977.  
  978.   <SOH><blk #><255-blk #><--128 data bytes--><CRC hi><CRC lo>
  979.       in which:
  980.   <SOH>             = 01 hex
  981.   <blk #>     = binary number, starts at 01 increments by 1, and
  982.                 wraps 0FFH to 00H (not to 01)
  983.   <255-blk #> = ones complement of blk #.
  984.   <CRC hi>    = byte containing the 8 hi order coefficients of the CRC.
  985.   <CRC lo>    = byte containing the 8 lo order coefficients of the CRC.
  986.                 See the next section for CRC calculation.
  987.  
  988. 7.1  CRC Calculation
  989.  
  990. 7.1.1 
  991. To calculate the 16 bit CRC the message bits are considered to be the
  992. coefficients of a polynomial. This message polynomial is first multiplied
  993. by X^16 and then divided by the generator polynomial (X^16 + X^12 + X^5 +
  994. 1) using modulo two arithmetic. The remainder left after the division is
  995. the desired CRC. Since a message block in the Modem Protocol is 128 bytes
  996. or 1024 bits, the message polynomial will be of order X^1023. The hi order
  997. bit of the first byte of the message block is the coefficient of X^1023 in
  998. the message polynomial.  The lo order bit of the last byte of the message
  999.                                   - 17 -èX/YMODEM Protocol Reference      5-30-85                                18
  1000.  
  1001.  
  1002. block is the coefficient of X^0 in the message polynomial.
  1003.  
  1004.  
  1005.    Figure 9.  Example of CRC Calculation written in C
  1006.  
  1007.    /*
  1008.     * This function calculates the CRC used by the XMODEM/CRC Protocol
  1009.     * The first argument is a pointer to the message block.
  1010.     * The second argument is the number of bytes in the message block.
  1011.     * The function returns an integer which contains the CRC.
  1012.     * The low order 16 bits are the coefficients of the CRC.
  1013.     */
  1014.  
  1015.    int calcrc(ptr, count)
  1016.    char *ptr;
  1017.    int count;
  1018.    {
  1019.        int crc, i;
  1020.  
  1021.        crc = 0;
  1022.        while(--count >= 0) {
  1023.            crc = crc ^ (int)*ptr++ << 8;
  1024.            for(i = 0; i < 8; ++i)
  1025.                if(crc & 0x8000)
  1026.                    crc = crc << 1 ^ 0x1021;
  1027.                else
  1028.                    crc = crc << 1;
  1029.            }
  1030.        return (crc & 0xFFFF);
  1031.    }
  1032.  
  1033. 7.2  CRC File Level Protocol Changes
  1034.  
  1035. 7.2.1
  1036. The only change to the File Level Protocol for the CRC option is the
  1037. initial handshake which is used to determine if both the sending and the
  1038. receiving programs support the CRC mode. All Modem Programs should support
  1039. the checksum mode for compatibility with older versions.  A receiving
  1040. program that wishes to receive in CRC mode implements the mode setting
  1041. handshake by sending a <C> in place of the initial <nak>.  If the sending
  1042. program supports CRC mode it will recognize the <C> and will set itself
  1043. into CRC mode, and respond by sending the first block as if a <nak> had
  1044. been received. If the sending program does not support CRC mode it will
  1045. not respond to the <C> at all. After the receiver has sent the <C> it will
  1046. wait up to 3 seconds for the <soh> that starts the first block. If it
  1047. receives a <soh> within 3 seconds it will assume the sender supports CRC
  1048. mode and will proceed with the file exchange in CRC mode. If no <soh> is
  1049. received within 3 seconds the receiver will switch to checksum mode, send
  1050. a <nak>, and proceed in checksum mode. If the receiver wishes to use
  1051. checksum mode it should send an initial <nak> and the sending program
  1052. should respond to the <nak> as defined in the original Modem Protocol.
  1053.                                   - 18 -èX/YMODEM Protocol Reference      5-30-85                                19
  1054.  
  1055.  
  1056. After the mode has been set by the initial <C> or <nak> the protocol
  1057. follows the original Modem Protocol and is identical whether the checksum
  1058. or CRC is being used.
  1059.  
  1060.  
  1061. 7.2.2
  1062. There are at least 4 things that can go wrong with the mode setting
  1063. handshake.
  1064.  
  1065.   1.  the initial <C> can be garbled or lost.
  1066.  
  1067.   2.  the initial <soh> can be garbled.
  1068.  
  1069.   3.  the initial <C> can be changed to a <nak>.
  1070.  
  1071.   4.  the initial <nak> from a receiver which wants to receive in checksum
  1072.       can be changed to a <C>.
  1073.  
  1074. The first problem can be solved if the receiver sends a second <C> after
  1075. it times out the first time. This process can be repeated several times.
  1076. It must not be repeated too many times before sending a <nak> and
  1077. switching to checksum mode or a sending program without CRC support may
  1078. time out and abort. Repeating the <C> will also fix the second problem if
  1079. the sending program cooperates by responding as if a <nak> were received
  1080. instead of ignoring the extra <C>.
  1081.  
  1082. It is possible to fix problems 3 and 4 but probably not worth the trouble
  1083. since they will occur very infrequently. They could be fixed by switching
  1084. modes in either the sending or the receiving program after a large number
  1085. of successive <nak>s. This solution would risk other problems however.
  1086.  
  1087.  
  1088. 7.2.3
  1089. The sending program should start in the checksum mode. This will insure
  1090. compatibility with checksum only receiving programs. Anytime a <C> is
  1091. received before the first <nak> or <ack> the sending program should set
  1092. itself into CRC mode and respond as if a <nak> were received. The sender
  1093. should respond to additional <C>s as if they were <nak>s until the first
  1094. <ack> is received. This will assist the receiving program in determining
  1095. the correct mode when the <soh> is lost or garbled. After the first <ack>
  1096. is received the sending program should ignore <C>s.
  1097.  
  1098.  
  1099. 7.3  Data Flow Examples with CRC Option
  1100.  
  1101. Here is a data flow example for the case where the receiver requests
  1102. transmission in the CRC mode but the sender does not support the CRC
  1103. option. This example also includes various transmission errors.  <xx>
  1104. represents the checksum byte.
  1105.  
  1106.  
  1107.                                   - 19 -èX/YMODEM Protocol Reference      5-30-85                                20
  1108.  
  1109.  
  1110.       Figure 10.  Data Flow: Receiver has CRC Option, Sender Doesn't
  1111.  
  1112.       SENDER                                  RECEIVER
  1113.                               <---            <C>
  1114.                                       times out after 3 seconds,
  1115.                               <---            <nak>
  1116.       <soh> 01 FE -data- <xx> --->
  1117.                               <---            <ack>
  1118.       <soh> 02 FD -data- <xx> --->    (data gets line hit)
  1119.                               <---            <nak>
  1120.       <soh> 02 FD -data- <xx> --->
  1121.                               <---            <ack>
  1122.       <soh> 03 FC -data- <xx> --->
  1123.          (ack gets garbaged)  <---            <ack>
  1124.                                       times out after 10 seconds,
  1125.                               <---            <nak>
  1126.       <soh> 03 FC -data- <xx> --->
  1127.                               <---            <ack>
  1128.       <eot>                   --->
  1129.                               <---            <ack>
  1130.  
  1131. Here is a data flow example for the case where the receiver requests
  1132. transmission in the CRC mode and the sender supports the CRC option.  This
  1133. example also includes various transmission errors.  <xxxx> represents the
  1134. 2 CRC bytes.
  1135.  
  1136.            Figure 11.  Receiver and Sender Both have CRC Option
  1137.  
  1138.      SENDER                                    RECEIVER
  1139.                                <---            <C>
  1140.      <soh> 01 FE -data- <xxxx> --->
  1141.                                <---            <ack>
  1142.      <soh> 02 FD -data- <xxxx> --->    (data gets line hit)
  1143.                                <---            <nak>
  1144.      <soh> 02 FD -data- <xxxx> --->
  1145.                                <---            <ack>
  1146.      <soh> 03 FC -data- <xxxx> --->
  1147.         (ack gets garbaged)    <---            <ack>
  1148.                                        times out after 10 seconds,
  1149.                                <---            <nak>
  1150.      <soh> 03 FC -data- <xxxx> --->
  1151.                                <---            <ack>
  1152.      <eot>                     --->
  1153.                                <---            <ack>
  1154.  
  1155.  
  1156.  
  1157.  
  1158.  
  1159.  
  1160.  
  1161.                                   - 20 -èX/YMODEM Protocol Reference      5-30-85                                21
  1162.  
  1163.  
  1164. 8.  MORE INFORMATION
  1165.  
  1166. More information may be obtained by calling Telegodzilla at 503-621-3746.
  1167. Hit RETURNs for baud rate detection.
  1168.  
  1169. A version this file with boldface, underlining, and superscripts for
  1170. printing on Epson or Gemini printers is available on Telegodzilla as
  1171. "YMODEME.DOC" or "YMODEME.DQC".
  1172.  
  1173. UUCP sites can obtain this file with
  1174.              uucp omen!/usr/spool/uucppublic/ymodem.doc /tmp
  1175.  
  1176. The following L.sys line calls Telegodzilla (Pro-YAM in host operation).
  1177. Telegodzilla waits for carriage returns to determine the incoming speed.
  1178. If none is detected, 1200 bps is assumed and a greeting is displayed.
  1179.  
  1180. In response to "Name Please:" uucico gives the Pro-YAM "link" command as a
  1181. user name.  The password (Giznoid) controls access to the Xenix system
  1182. connected to the IBM PC's other serial port.  Communications between Pro-
  1183. YAM and Xenix use 9600 bps; YAM converts this to the caller's speed.
  1184.  
  1185. Finally, the calling uucico logs in as uucp.
  1186.  
  1187.                      omen Any ACU 1200 1-503-621-3746
  1188.               ase:--ase: link ord: Giznoid ogin:--ogin: uucp
  1189.  
  1190.  
  1191.  
  1192.  
  1193.  
  1194.  
  1195.  
  1196.  
  1197.  
  1198.  
  1199.  
  1200.  
  1201.  
  1202.  
  1203.  
  1204.  
  1205.  
  1206.  
  1207.  
  1208.  
  1209.  
  1210.  
  1211.  
  1212.  
  1213.  
  1214.  
  1215.                                   - 21 -èX/YMODEM Protocol Reference      5-30-85                                22
  1216.  
  1217.  
  1218. 9.  YMODEM Programs
  1219.  
  1220. A demonstration version of Professional-YAM is available as YAMDEMO.LQR (A
  1221. SQueezed Novosielski library).  This may also be used to exercize YMODEM
  1222. implementations.
  1223.  
  1224. Unix programs supporting the YMODEM protocol are available on Telegodzilla
  1225. in the "upgrade" subdirectory as RBSM.SHQ (a SQueezed shell archive).
  1226. Most Unix like systems are supported, including V7, Sys III, 4.2 BSD, SYS
  1227. V, Idris, Coherent, and Regulus.
  1228.  
  1229. A version for Vax-VMS is available in VRBSB.SHQ.
  1230.  
  1231. A CP/M assembly version is available as MODEM76.AQM and MODEM7.LIB.
  1232.  
  1233. Technical questions about the Professional-YAM communications program and
  1234. requests for evaluation copies for magazine reviews may be directed to:
  1235.      Chuck Forsberg
  1236.      Omen Technology Inc
  1237.      17505-V Sauvie Island Road
  1238.      Portland Oregon 97231
  1239.      Voice: 503-621-3406
  1240.      Modem: 503-621-3746 Speed: 1200,300
  1241.      Usenet: ...tektronix!reed!omen!caf
  1242.      Compuserve: 70715,131
  1243.      Source: TCE022
  1244.  
  1245.  
  1246.  
  1247. -- 
  1248.         Chuck Forsberg WA7KGX       ...!tektronix!reed!omen!caf
  1249. Omen Technology Inc     17505-V NW Sauvie Island Road Portland OR 97231
  1250. Voice: 503-621-3406     Modem: 503-621-3746 (Hit CR's for speed detect)
  1251. Home of Professional-YAM, the most powerful COMM program for the IBM PC
  1252.  
  1253.